home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 002 / sc_cat.arc / SC_CC.BAT < prev    next >
Encoding:
DOS Batch File  |  1986-06-11  |  330 b   |  18 lines

  1. echo off
  2. echo Software Catalog 'Copy Catalog'
  3. echo (c) Copyright 1986 Software Creations
  4. echo -
  5. echo Insert Software Catalog master disk in A:
  6. pause
  7. if %1x == x goto error1
  8. if exist %1 goto error2
  9. copy a:sc_cat.dbf %1
  10. goto end
  11. :error1
  12. copy a:sc_cat.dbf *.*
  13. goto end
  14. :error2
  15. echo %1 exists already.
  16. goto end
  17. :end
  18.